home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / full / jbuild / setup / JBuilder / jsamples.z / Application1.java < prev    next >
Encoding:
Java Source  |  1997-07-03  |  538 b   |  30 lines

  1.  
  2. package borland.samples.jbcl.treecontrol;
  3.  
  4. /**
  5.  * A simple sample application that shows how to use the checkbox control.
  6.  *
  7.  * @version     1.0, 06/10/97
  8.  * @author     Borland Development Team
  9.  */
  10.  
  11. public class Application1 {
  12.  
  13.   /**
  14.    * Construct the application
  15.    */
  16.   public Application1() {
  17.     Frame1 frame = new Frame1();
  18.     frame.pack();
  19.     frame.setSize(600, 300);
  20.     frame.setVisible(true);
  21.   }
  22.  
  23.   /**
  24.    * Main method
  25.    */
  26.   static public void main(String[] args) {
  27.     new Application1();
  28.   }
  29. }
  30.  
  31.